home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / av077wb3.zip / AVALON.ZIP / SAMPLE.BAT < prev    next >
DOS Batch File  |  1997-04-16  |  1KB  |  20 lines

  1. REM ** SAMPLE BATCH FILE FOR SINGLE-LINE BBS **
  2.  
  3. @ECHO OFF                       - No display what is happening.
  4. <drive>:                        - Change to the BBS Drive.
  5. CD\<av_dir>                     - Change Dir to the Avalon Directory.
  6. RUNAV.BAT 1                     - Run Avalon on node #1.
  7. CD\<bbsdir>                     - Return to the BBS Directory.
  8. EXIT                            - Exit back to the BBS.
  9.  
  10. REM ** SAMPLE BATCH FILE FOR MUTLI-NODE BBS **
  11.  
  12. @ECHO OFF                       - No display what is happening.
  13. <drive>:                        - Change to the BBS Drive.
  14. CD\<av_dir>                     - Change Dir to the Avalon Directory.
  15. RUNAV.BAT *                     - Run Avalon on a "*" for the node number
  16.                                   (consult your BBS Documentation for info on
  17.                                   how to pass node numbers to command lines).
  18. CD\<bbsdir>                     - Return to the BBS Directory.
  19. EXIT                            - Exit back to the BBS.
  20.